a86ca3103e48e4c69dd6819f8dd8158726d16b83,src/com/davemorrissey/labs/subscaleview/FixedSubsamplingScaleImageView.java,FixedSubsamplingScaleImageView,distance,#number#number#number#number#,1735
Before Change
private float distance(float x0, float x1, float y0, float y1) {
float x = x0 - x1;
float y = y0 - y1;
return FloatMath.sqrt(x * x + y * y);
}
/**
After Change
private float distance(float x0, float x1, float y0, float y1) {
float x = x0 - x1;
float y = y0 - y1;
return (float)Math.sqrt(x * x + y * y);
}
/**